<text><span class="style12">roduct Data Sheets are available for viewing and printing. Simply click on the button "VIEW" or "PRINT" to view the document in its entirety.
To view data sheets properly, you will need at least 2.5 MBs of RAM. On a computer with less than 2.5 MBs, the font kerning will not look correct. This will not affect printing quality.
</span></text>
</content>
<name>Help - Lit</name>
<script></script>
</card>
card_43489.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text><span class="style12">he Apple Literature Guide is a complete listing of all current part-numbered Apple literature pieces. For ease of navigation, it is divided into 8 topics.
The following information is available for each literature piece:
• Title: To search for a particular piece by title, click 'Search'.
• Part No.: To search for a particular piece by Part No., click'Search'.
• Synopsis: Description of literature piece.
</span></text>
</content>
<name>Help - General</name>
<script></script>
</card>
card_11874.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
• Click the 'ORDER' button on the literature card you want to order.
• Enter the number of packs you want to order (If amount is greater than 50 packs, you will be prompted to provide justification for the large quantity).
</span><span class="style14">Literature Order Addressing:</span><span class="style12">
• Select 'Order Form'.
• Select "Ship to" to enter requestor, shipping, billing and authorization information (DO NOT send orders to P.O. Box numbers).
• Make sure you fill out both cards.
</span><span class="style14">Ordering Info Definitions:</span><span class="style12">
• CUSTOMER #: If you do not know your Customer #, contact your appropriate support center in Charlotte or Sunnyvale.
• DIVISION #: Enter division ordering literature.
• DEPT #: Enter department ordering literature.
• ACCOUNT #: This is automatically input when "Order Reason/Use Code" has been selected from the lower right of the card.
• PROJECT #: Assigned by the Financial Analyst in your group
(only if the order is tied to a specific project); if it is not, enter
"N/A".
</span><span class="style14">Sending Your Order:</span><span class="style12">
• Select 'Order Form'.
• Select "Send".
• You will be prompted to assign a P.O. number to your order (no more than 14 characters). If you have not done so, you will also be prompted to fill out shipping/billing information.
• You may change the quantity of your order on the Order Form card by typing in a new number; if you want to delete a particular item, type a 0 (zero).
• By pressing "Send" your order will be converted into an AppleLink document and will be placed in your AppleLink Out Basket. Next time you log onto AppleLink, you need only to select
"Send Items in Out Basket" and your order will be electronically sent to the distribution center chosen.</span></text>
</content>
<name>Help - Order</name>
<script></script>
</card>
card_10895.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text><span class="style1">lease enter any special intructions you would like to accompany this order. For example, if this order cannot be filled by a certain date, then do not send.</span><span class="style10"></span></text>
</content>
<name>Special Instructions</name>
<script></script>
</card>
card_10415.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text><span class="style1">o change your order quantity, double-click the number and enter a new one. To remove an order, enter 0. </span><span class="style9"></span></text>
</content>
<content>
<layer>card</layer>
<id>18</id>
<text>12/20/90</text>
</content>
<name>Order Form</name>
<script>on CheckOrderInfo
global gOrderInfo
spinCursor
go cd "Order Form"
lock screen
show cd fld "Back"
show cd fld "Front"
show btn "Gathering Ordering Info…"
unlock screen
retreiveOrderInfo
repeat with n = 1 to 19
--@if n = 4 then next repeat
if line n of gOrderInfo = "" then
lock screen
hide cd fld "Back"
hide cd fld "Front"
hide btn "Gathering Ordering Info…"
unlock screen
if n < 12 then
go cd "ShipTo"
unlock screen
answer "Please complete the information on this card."
exit to hyperCard
else
go cd "BillTo"
unlock screen
answer "Please complete the information on this card."
exit to hyperCard
end if
end if
end repeat
lock screen
hide cd fld "Back"
hide cd fld "Front"
hide btn "Gathering Ordering Info…"
unlock screen
send FillForm to card
unlock screen
end CheckOrderInfo
on clearOrder
global OrderList,PONumber,SpecInstruct
lock screen
put "" into OrderList
put "" into cd fld 1 of cd "Order Form"
put "" into cd fld 2 of cd "Order Form"
put "" into cd fld 3 of cd "Order Form"
put "" into cd fld 4 of cd "Order Form"
put "" into cd fld "PONumber" of cd "Order Form"
put "" into PONumber
put "" into SpecInstruct
put "" into cd fld "Special Instructions" of cd "Special Instructions"
unlock screen
end clearOrder
on openCard
fillform
end openCard
on closecard
global PONumber
spinCursor
put "" into cd fld "Qty"
put "" into cd fld "PartNum"
put "" into cd fld "Description"
put cd fld "PONumber" into PONumber
put "" into cd fld "PONumber"
end closecard
on fillForm
global OrderList,PONumber
spinCursor
put PONumber into cd fld "PONumber"
put the date into cd fld "Date"
repeat with n = 1 to number of lines in OrderList
if n mod 2 = 0 then spinCursor
put line n of OrderList into str
repeat with m = 1 to 3
put item m of str into line n of cd fld m
end repeat
put item 4 to (number of items of str) of str into line n of cd fld 4
end repeat
spinCursor
end fillForm
on CollectData
-- This function takes the current order form and builds a new
-- global varible OrderList. It is used in case there has been a
-- change to the quantity.
global OrderList,SpecInstruct
spinCursor
put "" into OrderList
put cd fld "Qty" into q
put cd fld "Units" into u
put cd fld "PartNum" into p
put cd fld "Description" into d
repeat with z = 1 to number of lines of q
if z mod 2 = 0 then spinCursor
if not errorCheck(line z of q) then return false
put line z of q &","& line z of u &","& line z of p &","& line z of d & return after OrderList
end repeat
delete last char of OrderList
spinCursor
end CollectData
function MakeMemo LinkAdr
-- This function actually pulls all the information together and
-- formats the memo.
global OrderList,PONumber,gOrderInfo
spinCursor
lock screen
if gOrderInfo is "" then
put PreferencesPath() & "Lit Guide Prefs" into fName
open file fName
read from file fName for 16834
close file fName
put it into gOrderInfo
if gOrderInfo is "" then
beep
answer "The order information seems to be missing."
go cd "ShipTo"
exit to HyperCard
end if
end if
put line 1 of gOrderInfo into Name
put line 2 of gOrderInfo into Phone
put line 3 of gOrderInfo into AppleLink
put line 4 of gOrderInfo into MS
put line 5 of gOrderInfo into OrgName
put line 6 of gOrderInfo into Contact
put line 7 of gOrderInfo into Street
put line 8 of gOrderInfo into City
put line 9 of gOrderInfo into State
put line 10 of gOrderInfo into Zip
put line 11 of gOrderInfo into ShipToPhone
put line 12 of gOrderInfo into Mgr
put line 13 of gOrderInfo into Link
put line 14 of gOrderInfo into CustomerNum
put line 15 of gOrderInfo into Division
put line 16 of gOrderInfo into DeptNum
put line 17 of gOrderInfo into AccountNum
put line 18 of gOrderInfo into ProjectNum
put line 19 of gOrderInfo into reason
spinCursor
put SpecInstruct into spinst
put "Below is an order for Sales literature from the Apple Literature Guide. "&¬
<text>AppleLink is athe information and communications network that gives you a direct line to the Apple community. Using your Apple Macintosh computer,
you'll have ready access to information about Apple and third-party programs and products.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:P1081LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_11774.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The best way to evaluate a personal computer is to put it to the test. This tabloid brochure gives computer, monitor, performance, and software testing information in a flashy, easy to understand way.</text>
</content>
<name></name>
<script></script>
</card>
card_12363.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Ethernet family of networking components provides a modular, "plug-and-play" approach for connecting to an Ethernet network. The consistent design of Apple Ethernet components means that you can attach the appropriate Apple Ethernet media adapter to your Macintosh computer and connect to any industry-standard Ethernet media.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M1070LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_12707.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Ethernet NB Card is a busmaster network interface card that provides connectivity to IEEE 802.3 Ethernet networks for the Macintosh II family of personal computers.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M1072LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_12952.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Customer Assistance Center 800# flyer offers information to users who need on-line assistance about computer hardware, software, peripherals, Apple programs, policies, as well as problem solving.</text>
</content>
<name></name>
<script></script>
</card>
card_14119.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>A 20-panel black & white flyer which explains the Apple Credit Card, the advantages of using the card, and provides an application to order it.</text>
</content>
<name></name>
<script></script>
</card>
card_14427.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>Apple Literature Guide-Higher Education</text>
</content>
<content>
<layer>background</layer>
<id>2</id>
<text>M0391LL/A
Education Markets</text>
</content>
<content>
<layer>background</layer>
<id>16</id>
<text>1</text>
</content>
<content>
<layer>background</layer>
<id>4</id>
<text>This 58-page, color brochure is composed of three main sections: an introduction/overview on the function and advantage of Macintosh in writing instruction, a description of 12 educational instititutions using Macintosh in their writing programs; and summaries of commercially and faculty developed software focused in the area of writing.</text>
</content>
<name></name>
<script></script>
</card>
card_14779.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>"Don't Buy a Computer, Lease It" is a 7-panel brochure which contains the complete lease application for Apple commercial credit , the lease agreement and lease contract.</text>
</content>
<name></name>
<script></script>
</card>
card_14973.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple II Literature Guide is a complete resource for users of the Apple II computer.
It covers the history, a basic understanding, and how to make the most out of the Apple II computer. Also included is communication strategies, troubleshooting, sales, service, and support, and technical and information resources.</text>
</content>
<name></name>
<script></script>
</card>
card_15331.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>An oversize, periodical-like brochure written and edited on a Macintosh by a Stanford student . It describes how a personal computer can help a student survive college and land that perfect job.
Target: College bound students and college graduates.</text>
</content>
<name></name>
<script></script>
</card>
card_15614.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-color Apple Guide covers the following topics: Why most professors have nevered tried to write courseware; Why most professors now can; Profiles of professors who have used courseware and were successful; How courseware can be more than just software; How to use courseware; and a listing of groups who are using courseware today.</text>
</content>
<name></name>
<script></script>
</card>
card_15839.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-color brochure targets the business school student. Using testimonials from professors and students, it tells why Macintosh is not only the solution for business school but for the business world afterwards.
Various applications are reviewed on topics such as: accounting, decision analysis, mathematical modeling, project management, and more!</text>
</content>
<name></name>
<script></script>
</card>
card_16042.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>HyperCard for the Apple IIGS personal computer lets you create a unique personal environment for exploring and managing information.
HyperCard IIGS can be used in an almost unlimited number of ways—to manage personal information, to create interactive multimedia presentations and tutorials, or to build interfaces to on-line information services.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:A0072LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_16637.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Multivendor Network Solutions Guide provides information on Apple and Third Party networking products. Environments covered in the Guide include Digital Equipment, IBM and AppleTalk networking. Success stories provide insight on companies who have installed Macintosh computers in a multi- vendor environment.</text>
</content>
<name></name>
<script></script>
</card>
card_16680.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>A 8-panel, 4-color fold out brochure that describes why the Macintosh computer is ideal for high schools.
It pinpoints the benefits Macintosh offers for writing classes, school newspapers, business education classes and vocational education classes. A list of major universities and corporations that rely on Macintosh computers is also provided.</text>
</content>
<name></name>
<script></script>
</card>
card_17314.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-color, 4-panel flyer discusses how Landor Associates (a San Francisco based international design firm) is using the Macintosh computer for architectural design projects.</text>
</content>
<name></name>
<script></script>
</card>
card_17855.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-color, 4-panel flyer discusses how Joe Duffy (coinventor of Baxter Healthcare Corporation's blood-cell centrifuge, which was sent to the Soviet Union to treat victims of the Chernobyl disaster) used the Macintosh computer for creating a packaging and delivery system for Baxter's temperature-sensitive antibiotics.</text>
</content>
<name></name>
<script></script>
</card>
card_18047.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-color, 16-panel brochure discusses the importance of the Macintosh computer in developing great ideas in the design and modeling field.
The brochure provides visual examples of a number of software applications, and presents success stories from various Macintosh computer users in the design field.</text>
</content>
<name></name>
<script></script>
</card>
card_18299.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-color, 10-panel brochure discusses the benefits of Apple's open architecture system.
The brochure reviews Apple's design principles and the five layers of the Open Architecture System Integration Strategy. It also discusses how the Macintosh computer can fit into different networking environments.
</text>
</content>
<name></name>
<script></script>
</card>
card_18483.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-color brochure opens into a poster, showing visuals of Macintosh compact computers, modular computers, and the Macintosh Portable computer.
Technical specifications are provided, and a chart shows what input devices, memory expansion kits, storage devices, monitors, printers, networking hardware & software and communication accessories are available for each computer system.</text>
</content>
<name></name>
<script></script>
</card>
card_18917.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The 4-color brochure promotes the Apple Educator Advantage Program which give large discounts on Apple computers and payment programs to help you make purchasing a Apple computer easier.</text>
</content>
<name></name>
<script></script>
</card>
card_19152.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This brochure gives seven steps designed to help the Macintosh user take better care of their computer. These are: give it plenty of space; make sure you have only one System Folder; lock floppy disks to avoid viruses, don't label disks with a pencil; limit the number of times you turn your system on
and off during the day; clean your mouse every month; and get AppleCare.</text>
</content>
<name></name>
<script></script>
</card>
card_19299.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 80-page guide details the many current solutions available to the legal market.
Some of the solutions it inlcudes are Practice-Specific Solutions, Docket & Calendar Management, Time & Billing, Litigation Support, Database Applications, etc.</text>
</content>
<name></name>
<script></script>
</card>
card_19490.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
A/UX operating system lets A/UX users run X client applications that have the familiar, intuitive interface of the Macintosh personal computer.
This 6-panel data sheet describes the X Window System's features, benefits, product details, system requirements, technical specifications and ordering information.
</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0659LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_20289.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>Apple is committed to providing long-term support that will help you maximize your investment in our products. We've created the Apple Technical Answerline to give you direct access to Apple support engineers for technical assistance with high-end Macintosh computer products.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:C0134LL/B,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_20621.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Personal LaserWriter NT printer offers individuals and small workgroups affordable, high-quality printing. It has the ability to produce a wide variety of documents—from letters and memos to full pages of sophisticated text and graphics that include scanned illustrations and photographs, page layouts, and presentations. It has been designed to fit almost any office environment.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0817LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_21044.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Personal LaserWriter SC printer is ideal for people who want high-quality printing at an affordable price. Designed for the individual user, the Personal LaserWriter SC gives you full-page, high-resolution printing—for text or graphics—on almost any material, including standard photocopy paper, letterhead, labels, envelopes, and transparency film.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0816LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_21476.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The MacX25 software links Macintosh computers to packet-switched data networks (PSDNs) supporting CCITT Recommendation X.25.
This 6-panel product sheet describes the features, benefits, product details, system requirements, technical summary, optional facilities and ordering information. It also provides information on the MacX25 Programming Library.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0247LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_21687.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>MacWorkStation is a server application that runs on a Macintosh computer and provides standard Macintosh user interface, printing, and filing services to client applications running on remote computers.
This 4-panel data sheet discusses MacWorkStation's features, benefits, product details, implementation, system requirements, availability and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0069LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_21978.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>MacTerminal communications software is a desktop terminal emulation and communications application that enables Macintosh personal computer users to communicate easily with many host computers such as VAX and UNIX systems.
This 4-panel data sheet discusses product features and benefits, system requirements, related products, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0782LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_22052.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This product sheet describes the features and benefits of the MacTCP software.
With MacTCP software, developers now have the ability to create Apple Macintosh applications for network environments which use TCP/IP protocols - a widely used standard for networking heterogenous systems.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M6045,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_22452.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh System Software Version 6.0 Family distinguishes Macintosh computers from all others. It provides consistency in working with any Macintosh, and supports more than 3,500 applications for business, education, graphic arts, engineering, and entertainment. It incorporates all the features—pull-down menus, movable windows, and icons—that contribute to easy learning and use, and that are synonymous with all Macintosh computers.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0814LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_22579.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh SE/30 personal computer was designed for people who want maximum performance from a compact computer system.
This 6-panel product sheet describes the Macintosh SE/30 computer's features, benefits, product details, technical specifications, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0032LL/B,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_22900.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>A 4-page product sheet which describes the features, benefits, system requirements, ordering information and recommended options for the Macintosh SE/30 Logic Board Upgrade.
It essentially offers users of the Macintosh SE computers a way to get system performance and capabilities of the Macintosh SE/30 computer.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0142LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_23273.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh SE personal computer combines the compact design of the Macintosh Plus with the added power, faster file access, and greater flexibility.
This 6-panel product sheet describes the Macintosh SE computer's features, benefits, product details, technical specifications, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M2226/D,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_23447.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>AppleCare is a flexible extended service agreement for your Apple computer systems and periperhal products. By purchasing AppleCare coverage, which takes effect after your initial limited warranty expires, you can obtain an unlimited number of repairs (costs
for both parts and labor are covered) on the designated equipment—at an annual
cost typically less than that of one uncovered repair.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:C0165LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_23648.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh Portable Numeric KeyPad Module is designed especially for the Macintosh Portable personal computer. The 18-key keypad can be inserted on the right or left of your keyboard in place of the trackball.
This 2-panel B&W product sheet describes the keypad's features, benefits, system requirements, technical specifications, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0345LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_23839.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Macintosh Portable Data Modem 2400 allows users of the Macintosh Portable computer to communicate with other personal computers, minicomputers, and mainframes in order to access and exchange information.
This 2-panel product sheet describes the modem's features, benefits, system requirements, technical specifications, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0336LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_24191.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>A 4-page product sheet which describes the Macintosh Plus computer, the features, benefits, system requirements and ordering information. </text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M2225/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_24389.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Macintosh LC 512K VRAM SIMM (video random-access memory, Single In-line Memory Module) increases the number of colors that a Macintosh LC personal computer can display simultaneously on a monitor. This gives you the capability of working with an extraordinary range of colors or shades of gray. The SIMM is a small circuit board containing VRAM chips that fits into a socket on the computer’s main logic board.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0952LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_25054.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Macintosh LC is Apple Computer's lowest-cost color-capable Macintosh. Combining the flexibility of a modular system with a sleak new design, the Macintosh LC gives you a range of options for larger screens, color displays, and system expansion, all at an even more afforable price.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0938LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_25329.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh IIfx Logic Board Upgrade gives users of Macintosh II and IIx computers all the advantages of the Macintosh IIfx computer.
This 6-panel data sheet describes the logic board's features, benefits, product details, system requirements, technical specifications and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0656LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_25420.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh IIfx is an extremely high-speed and elegantly engineered personal computer that has been designed for people who need the ultimate in Macintosh reponsiveness as well as new Macintosh capabilities.
This 6-panel product sheet describes the features, benefits, product details, technical specifications and ordering information for the Macintosh IIfx.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0655LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_25716.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Macintosh IIsi/IIci 2MB and 8MB Memory Expansion Kits let you expand your Macintosh IIsi or Macintosh IIci, giving you the ability to run advanced applications and work with more applications simultaneously. The expansion kits consist of either four 512K or four 2MB Single In-line Memory Modules (SIMMs). The SIMMs let you go to the maximum dynamic random-access memory (DRAM) at once or in steps. Dealer installation is required.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0956LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_25873.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>Macintosh IIsi 030 Direct Slot Adaptor</text>
</content>
<content>
<layer>background</layer>
<id>2</id>
<text>M0940LL/A
Product Data Sheets & Brochures</text>
</content>
<content>
<layer>background</layer>
<id>16</id>
<text>50</text>
</content>
<content>
<layer>background</layer>
<id>4</id>
<text>The Apple Macintosh IIsi 030 Direct Slot Adaptor Card offers two ways of increasing system expandability and performance. It lets you add an 030 Direct Slot expansion card to the Macintosh IIsi for networking, graphics, and other uses. It also includes the Motorola 68882 floating-point math coprocessor and improves the speed at which mathematical calculations generated by applications such as CAD/CAM and graphics are performed.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0940LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_26277.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>To Get The Right Computer; Ask the Right Questions</text>
</content>
<content>
<layer>background</layer>
<id>2</id>
<text>M0945LL/A
Product Data Sheets & Brochures</text>
</content>
<content>
<layer>background</layer>
<id>16</id>
<text>25</text>
</content>
<content>
<layer>background</layer>
<id>4</id>
<text>This tabloid magazine gives an overview of the Macintosh line of personal computers and what the user needs to know about them to make a solution driven purchasing decision.</text>
</content>
<name></name>
<script></script>
</card>
card_26611.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Macintosh IIsi NuBus Adaptor Card lets you add one of hundreds of high-performance NuBus expansion cards that are available for networking, graphics, and other uses. It also includes the Motorola 68882 floating-point math coprocessor and improves the speed at which mathematical calculations generated by applications such as CAD/CAM, sophisticated graphics packages, and databases are performed.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0939LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_26788.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Macintosh IIsi is the lowest-cost member of the Macintosh II computer line. Offering high performance and a wide range of expansion and video options, the Macintosh IIsi is ideal for people who need a powerful but very affordable Macintosh system that can easily grow with their needs over time.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0914LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_27112.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh IIcx personal computer is designed for people who want the perfomance, functionality, and flexibility of the modular Macintosh product line in a system with a small footprint.
This 6-panel product sheet describes the features, benefits, product details, technical specifications, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0066LL/B,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_27221.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh IIci Cache Card can increase system performance by 20-30 % by holding the system's most frequently used instructions in high-speed memory, allowing the computer's microprocessor to access data faster than it can from main memory.
This 2-sided product sheet describes the card's features, benefits, system requirements, technical specifications and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0661LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_27604.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh IIci personal computer offers high performance and enhanced functionality in a system with the same small footprint and flexible design as the Macintosh IIcx.
This 6-panel product sheet describes the Macintosh IIci computer's features, benefits, product details, and technical specifications.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0338LL/B,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_27698.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh Display Card 8•24 GC combines the capabiltites of a display card with the power of a dedicated graphics coprocessor, providing the Macintosh II family with sophisticated graphics capabilitites at significantly faster drawing speeds.
This 4-panel B&W data sheet describes the card's features, benefits, system requirements, technical specifications and ordering information.
</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0657LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_28153.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>Macintosh Display Card 4•8 and 8•24</text>
</content>
<content>
<layer>background</layer>
<id>2</id>
<text>M0658LL/A
Product Data Sheets & Brochures</text>
</content>
<content>
<layer>background</layer>
<id>16</id>
<text>50</text>
</content>
<content>
<layer>background</layer>
<id>4</id>
<text>The Macintosh Display Card 4•8 and 8•24 provide the Macintosh II family of personal computers with a single interface to all Apple displays and a broad range of graphics capabilities.
This 4-panel data sheet describes the cards' features, benefits, system requirements, technical specifications and ordering information.
</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0658LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_28209.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh Communications Toolbox is system software that provides Macintosh applications with standard access to communications services, including data connection, terminal emulation, and file transfer protocols.
This 4-panel data sheet discusses product features and benefits, system requirements, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0726LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_28757.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Macintosh Classic personal computer offers all of the most valued advantages associated with Macintosh computers— including unsurpassed ease of use, the ability to run thousands of applications that work well together, built-in networking, and an easy growth path—in the lowest-cost Macintosh.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0913LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_29097.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>Common Lisp is a standard dialect of the Lisps programming language, which is widely used to develop artificial intelligence programs and other advanced applications and for rapid prototyping. Macintosh Allegro Common Lisp (CL) is the first complete implementation of the dialect for any microcomputer, supporting all the features described in the definitive text, "Common Lisp: The Language", by Guy Steele.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0242LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_29313.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh 12" RGB Display is Apple’s lowest-cost color display. It produces vibrant colors on a high-contrast screen that displays the full width of the text on a letter-size page. It supports simultaneous display of color graphics and text and offers excellent focus for sharp, clear images. This display can be used with any Macintosh personal computer that has a built-in video port or is equipped with an appropriate video card.
</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0915LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_29490.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh 12" Monochrome Display offers the lowest-cost option for high-resolution display of text and graphics. With a new “page-white” phosphor screen and dark glass, this display offers high brightness and sharp contrast. Its 640 by 480 pixel screen shows the full width and more than half the height of a letter-size page. It can also display up to 256 levels of gray, depending on the Macintosh computer or video card to which it is connected.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0916LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_29775.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>MacDFT is a full function 3270 terminal emulation program that enables personal computers in the Macintosh II family to communicate with IBM mainframes.
This 4-panel product sheet describes the MacDFT application software's features, benefits, system require- ments, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0064LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_30185.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The MacAPPC software is one of a family of connectivity products that lets the Macintosh personal computer function in mainstream IBM Systems Network Architecture (SNA) environments.
This 4-panel product sheet describes the features, benefits, system requirements, technical notes, LU 6.2 Device Driver Notes, availability, and ordering information for the MacAPPC software.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0238LL/B,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_30395.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 6-panel product sheet describes the features, benefits, product details, expandability options and ordering information for the LaserWriter IINTX printer.
</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M3008/B,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_30543.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-sided product sheet discusses the features and benefits of the LANSTAR AppleTalk Network.
Offering high-performance networking at an affordable cost, the LANSTAR AppleTalk Network multiplies AppleTalk's speed and range to increase productivity in workgroups and entire companies. It provides file sharing, print spooling, electronic mail, and other services to more than 1,300 users. </text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M2266/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_31185.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-panel data sheet describes the configuration, design process (of creating HyperCard stacks that control videodisc players), design considerations, workstation components, and products and vendors for the Interactive Videodisc Workstation. </text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0070LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_31437.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-panel B&W product sheet describes the applications of the Interactive Sound Workstation.
It also covers system configuration, process (of incorporating high-quality digitized sound effects, voice and music into HyperCard stacks), design considerations, and products and vendors.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0071LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_31609.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-panel product sheet describes the applications of the Interactive Presentation Workstation, which gives you the tools you need to present multimedia projects to large or small groups. It also covers system configuration, process, design considerations, and products and vendors.
</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0072LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_31950.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-panel product sheet describes the applications for the Interactive Imaging Workstation, which gives you the ability to create visually enhanced HyperCard stacks that display digitized images from a variety of sources. It also covers system configuration, process, design considerations, and products and vendors. </text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0073LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_32068.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-sided product sheet describes the ImageWriter II printer's features, benefits, optional accessories, system requirements and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M2238/C,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_32767.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>HyperCard 2.0, a major revision of the Macintosh computer program HyperCard, is a personal software package that lets you manage information using virtually any type of media. It also gives you easy access to the power of Macintosh programming.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0813LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_32876.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Data Access Language (DAL) Server for VAX/VMS is a networking product that provides DAL access to data on a VAX/VMS host system. Running on the VAX/VMS host, the DAL Server works with Macintosh applications that support DAL.
This 4-panel data sheet discusses product features and benefits, system requirements, language specifications, and ordering information.
</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0340LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_33246.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>D.A.L. Developer's Toolkit for Macintosh</text>
</content>
<content>
<layer>background</layer>
<id>2</id>
<text>M0339LL/A
Product Data Sheets & Brochures</text>
</content>
<content>
<layer>background</layer>
<id>16</id>
<text>50</text>
</content>
<content>
<layer>background</layer>
<id>4</id>
<text>The Data Access Language (DAL) Developer’s Toolkit helps programmers build Macintosh applications with embedded access to host data. Linked to a host system running the DAL Server, the resulting application provides access to shared data.
This 4-panel data sheet discusses product features and benefits, system requirements, language specifications, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0339LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_33415.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>Communications Tools for the Macintosh Communications Toolbox enable applications to provide connection, terminal emulation, and file transfer capabilities to users.
This 4-panel B&W data sheet discusses product features and benefits, product details, system requirements, availability, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0783LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_33662.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The CL/1 Server for VM/CMS is a networking software product that provides CL/1 access to the Structured Query Language/Data System (SQL/DS) on a VM/CMS host system.
This 4-panel product sheet describes the features, benefits, product details, system requirements, and ordering information for the CL/1 Server for VM/CMS.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0249LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_33999.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The AppleTalk Internet Router increases the size and improves the performance and manageability of your AppleTalk network system. It allows AppleTalk networks such as LocalTalk, EtherTalk, and TokenTalk to be interconnected to form an internet.
This 4-panel product sheet describes the Internet Router's features, benefits, product details, system requirements, and ordering information.
</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0065LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_34302.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 2-sided product sheet describes the features, benefits, system requirements and ordering information for the AppleShare Print Server v2.0.
This print server allows you continue to work on your Macintosh or PC-compatible computer (equipped with an AppleTalk PC Card) while your documents are being printed on an Apple LaserWriter Printer or ImageWriter printer.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M2248/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_34537.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>AppleShare PC v2.0 software provides users of MS-DOS personal computers with access to the full range of services available on the AppleTalk network system.
This 4-panel product sheet describes the software's features, benefits, product details, system requirements, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M2302/B,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_34656.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-panel product sheet discusses the features, benefits, system requirements and ordering information for the AppleShare IIGS Workstation.
The AppleShare IIGS Workstation explains how users of Apple IIGS computers can have access to AppleShare file servers, network printers and AppleShare printers. </text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:A2F2025,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_34876.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The MacX 1.1 display server is based on X Window System, version 11, release 4. It provides increased speed and performance, and new capabilities which include cutting and pasting images from X applications to Macintosh applications, and the compiling of entire directories of fonts.
MacX 1.1 demonstrates Apple's commitment to multivendor connectivity and industry standards.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0246LL/B,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_35285.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The AppleColor High-Resolution RGB Monitor sets the standard in color graphics for personal computers. With the High-Resolution Display Video Card, the AppleColor monitor can display colors from a palette of more than 16 million.
This 2-sided data sheet describes the monitor's features, benefits, system requirements, technical specifications, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M2231/B,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_35868.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>Apple User Groups are organizations of people who want to enhance their computer enjoyment and proficiency by sharing information, support, and insights. If you want to find out how to get peak performance from your Apple computer system, join an Apple User Group. This datasheet gives valuable information about the benefits of doing so, and the types of support Apple offers its user groups.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:C0166LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_36837.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 2-sided product sheet describes the benefits, features and system requirements of the Apple Universal Monitor Stand.
With its tilt-and-swivel features, the Apple Universal Monitor Stand makes it easy for you to adjust your monitor to the position you like best.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M2232,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_36941.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Authorized Training Center (AATC) Program brings high-quality training on the Macintosh personal computer to your local authorized Apple dealership. Courses offered cover everything from basic Macintosh skills to the advanced user of Macintosh applications. Subjects include word processing, spreadsheets, databases, graphics, page layout, and presentations.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:P1074LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_37506.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Training Alliance (ATA) Program was developed in response to the growing need for applications training on the Apple Macintosh personal computer. Through the ATA, Apple has formed alliances with selected third-party
microcomputer training companies to provide Macintosh training to organizations and individuals.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:P1073LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_37855.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Macintosh Fundamentals Interactive Learning Course Version 2.0 provides comprehensive training onthe Apple Macintosh family of computers. Designed for both new and experienced users, it covers everything from basic operations to
setting up peripherals and networks.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:P0112LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_38119.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>LAN Literacy is a self-paced course that introduces networking terminology, concepts, and design. Designed for the Apple Macintosh personal computer, it places particular emphasis on local area networks (LANs), but also discusses
wide area networks (WANs).</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0896LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_38339.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Network Administration Skills 1.0c course is designed to help first-time network administrators to develop the skills and learn the procedures needed to manage an AppleTalk network.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:P1084LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_38464.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Introduction to Desktop Publishing and Presentations 1.0c course provides an overview of how an Apple Macintosh computer and an Apple
LaserWriter printer can be used to produce professional quality publications. It also describes the advantages of desktop publishing over traditional publishing methods.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:P1083LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_38721.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>AppleOrder is a powerful new order management tool for Apple resellers and service providers. Using AppleOrder software, an Apple Macintosh personal
computer, and a modem, resellers and service providers can communicate directly with Apple's order processig system for placing finished goods, service repair, and service stocking orders, as well as making order inquires.</text>
</content>
<name></name>
<script></script>
</card>
card_39142.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Technical Information Source CD-ROM provides fast, fingertip access to a wide range of support tools and information—all in one place. Contents include technical databases, frequently used system utilities and diagnostics, and support-oriented HyperCard stacks. This tools is ideal for anyone who supports Apple computer systems.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:C0190LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_39307.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The A/UX operating system can provide a powerful, interactive working environment for you and your company. To enhance that environment, Apple wants to ensure that you get the updates you need to keep your system working optimally—now and in the future. The A/UX Software Update Service provides a convenient way for you to recieve new version of A/UX software and related documents as soon as they are released by Apple.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0955LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_39632.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Software Update Program offers you timely, convenient access to the latest system, networking, and communications software for your Apple II and Macintosh computers.
As a subscriber, you'll receive software updates by mail directly from Apple Computer, allowing you to take immediate advantage of new features and
improvements.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:A7F0039/B,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_39846.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple TokenTalk NB Card allows personal computers in the Macintosh II family to connect to IBM and IBM-compatible Token-Ring networks.
This 4-panel product sheet describes this card's features, benefits, system requirements, technical specifications and ordering information as well as the features and benefits of theTokenTalk software and SMB File Transfer Utility.
</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0062LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_40042.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Serial NB Card is an expansion card that allows personal computer in the Macintosh II family of systems to connect to remote systems via a variety of industry- standard serial communications protocols. When used with Apple's MacAPPC or MacDFT software, the Serial NB Card provides a complete SDLC solution, at the physical and data-link layers, for connectivity in the IBM Systems Network Architecture (SNA) environment.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0239LL/B,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_40463.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-page product sheet describes the Apple Scanner's features, benefits, system requirements, and ordering information.
The Apple Scanner works with the Macintosh computer, the AppleFax Modem, and the LaserWriter family of printers to provide a powerful image-processing system.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M6294/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_40930.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple IIe Card will allow users of Apple Macintosh LC personal computers to run the world's largest collection of personal computer software—more than 10,000 Apple IIe programs.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0966LL/A,ALB4</text>
</content>
<name></name>
<script></script>
</card>
card_41244.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 2-sided product sheet introduces the Apple MIDI interface, which links your Macintosh or Apple IIGS computer to any device that uses the MIDI (Musical Instument Digital Interface) standard.
The product sheet covers its features, benefits, system requirements and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M3035/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_41611.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-page product sheet covers the features, benefits, system requirements, optional accessories and ordering information for the ImageWriter LQ printer. </text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:A7F0031/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_42132.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>Apple IIGS System Software version 5.0</text>
</content>
<content>
<layer>background</layer>
<id>2</id>
<text>A2F0158/A
Product Data Sheets & Brochures</text>
</content>
<content>
<layer>background</layer>
<id>16</id>
<text>50</text>
</content>
<content>
<layer>background</layer>
<id>4</id>
<text>This 4-page product sheet describes the features, benefits, product details, system requirements and ordering information for the Apple IIGS System Software 5.0. </text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:A2F0158/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_42313.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>This 4-page B&W product sheet describes the features, benefits, system requirements and ordering information for the Apple II Video Overlay Card. </text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:A0040LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_42845.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
lets you connect your Apple IIe or Apple IIGS personal computer to any device that uses the SCSI standard, such as a hard disk drive, CD-ROM drive, scanner, tape drive or laser printer.
This 2-panel data sheet describes the keyboard's features, benefits, system requirements, technical specifications and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:A0235LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_43620.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Extended Keyboard II is a versatile, ergonomically designed keyboard for the entire family of Macintosh SE and Macintosh II personal computers.
This 2-panel data sheet describes the keyboard's features, benefits, product details, system requirements, technical specifications and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0755LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_44482.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple Coax/Twinax Card is an expansion card that allows personal computers in the Macintosh II family to connect to an IBM SNA network as 3270 Information Display Systems, via industry-standard coax cabling.
This 2-panel product sheet describes this card's features, benefits, system requirements, technical specifications and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0063LL/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_44987.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>Small but powerful, the Apple 3.5 Drive stores 800K of data on a single 3.5-inch disk. It is a flexible and economical choice for Macintosh Plus, Macintosh SE and Apple II personal computer owners who want high-capacity storage at an affordable price.
This 2-sided product sheet discusses its features, benefits, system requirements and ordering information.
</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M2236/B,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_45978.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>Apple 2-Pg Mono Monitor Video Card/Exp Kit</text>
</content>
<content>
<layer>background</layer>
<id>2</id>
<text>M6298/A
Product Data Sheets & Brochures</text>
</content>
<content>
<layer>background</layer>
<id>16</id>
<text>50</text>
</content>
<content>
<layer>background</layer>
<id>4</id>
<text>The Apple 2-Page Monochrome Video Card and Expansion Kit provides the interface between the Apple 2-Page Monochrome Monitor and the Macintosh II computer.
This 2-panel product sheet describes the card and kit's features, benefits, product details, system requirements, technical specifications, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M6298/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_46280.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple 2-Page Monochrome Monitor is a high-resolution 21-inch monitor for the Macintosh II computer family. Its display of two full pages of text and graphics makes it ideal for desktop publishing, engineering, and multiwindow applications.
This 4-panel product sheet describes the monitor's features, benefits, system requirements, technical specifications, and ordering information.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M6300/A,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_46485.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>The Apple A/UX operating system, version 2.0.1, gives users access to the familiar, intuitive desktop of the Macintosh computer within the UNIX environment. By using A/UX 2.0.1, users can run multiple Macintosh productivity applications, UNIX applications, and X Window System applications simultaneously.</text>
</content>
<content>
<layer>background</layer>
<id>15</id>
<text>1-Reference:Apple Literature Guide:Product Data Sheets:M0660LL/B,ALB3</text>
</content>
<name></name>
<script></script>
</card>
card_11397.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >
<text>"If You Buy a Computer, Don't Pay for It" is a 6 panel Business Credit Card Application. It includes a complete application as well as the seller's and buyer's copy of the Business Revolving Charge Account Agreement.
</text>
</content>
<content>
<layer>background</layer>
<id>1</id>
<text>Business Credit Card Application</text>
</content>
<name></name>
<script></script>
</card>
card_42667.xml
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE card PUBLIC "-//Apple, Inc.//DTD card V 2.0//EN" "" >